home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / ATUtilities.lha / ATUtilities / ASM / EXESYS.ASM < prev    next >
Assembly Source File  |  2000-09-26  |  344b  |  30 lines

  1. code  segment
  2.  assume cs:code,ds:code
  3.  org 0
  4.  
  5. s:
  6.  dw -1,-1
  7.  dw 0
  8.  dw offset s
  9.  dw offset s
  10.  db "$$EXESYS"
  11.  
  12. exestart  proc far
  13.  push cs
  14.  pop ds
  15.  
  16.  mov ah,9
  17.  mov dx,offset text
  18.  int 21h
  19.  
  20.  mov ax,4c00h
  21.  int 21h
  22.  ret
  23. exestart  endp
  24.  
  25. text  db "SYS-Datei als EXE-Datei ladbar.",13,10,10,"$"
  26.  
  27. code  ends
  28.  end exestart
  29.  
  30.